home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / utilit~1 / stlogin4.lzh / MODEM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-07  |  433 b   |  19 lines

  1. /* Miscellaneous functions for use with HAYES smart modems
  2.    Kees Lemmens; Aug 1992
  3.  
  4.    Remarks or suggestions to:
  5.    lemmens@dv.twi.tudelft.nl
  6. */
  7.  
  8. #include <time.h>
  9. void Delay(clock_t ticks);
  10.  
  11. void mod_flush(int echo);
  12. int mod_getc(void);
  13. void mod_putc(char k);
  14. void mod_puts(char *cmd);
  15. void mod_gets(char *str,int nr);
  16. int mod_wait(char *string,int max_tm,int echo);
  17. int mod_reset(void);
  18. void mod_hangup(void);
  19.